57c48414030a9961e82d7e6f39a24b84ccc7e371,utils/src/com/cloud/utils/nio/Link.java,Link,initSSLContext,#boolean#,411
Before Change
File confFile = PropertiesUtil.findConfigFile("db.properties");
if (null != confFile && !isClient) {
final Properties dbProps = DbProperties.getDbProperties();
char[] passphrase = dbProps.getProperty("db.cloud.keyStorePassphrase").toCharArray();
String confPath = confFile.getParent();
String keystorePath = confPath + keystoreFile;
if (new File(keystorePath).exists()) {
After Change
File confFile = PropertiesUtil.findConfigFile("db.properties");
if (null != confFile && !isClient) {
final String pass = DbProperties.getDbProperties().getProperty("db.cloud.keyStorePassphrase");
char[] passphrase = "vmops.com".toCharArray();
if (pass != null) {
passphrase = pass.toCharArray();
}
String confPath = confFile.getParent();
String keystorePath = confPath + keystoreFile;